home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland Pascal with Objects 7.0 / GREPDLL.ZIP / MAKEFILE < prev    next >
Encoding:
Text File  |  1992-10-27  |  1.6 KB  |  73 lines

  1. # ******************************************************************
  2. # *                                       *
  3. # *   REGEX.DLL Makefile                        *
  4. # *   Copyright (c) 1992 by Borland International              *
  5. # *                                       *
  6. # ******************************************************************
  7.  
  8. # ------------------------------------------------------------------
  9. # NOTE:  Borland C++ 3.1 or later is required to use this makefile
  10. # ------------------------------------------------------------------
  11.  
  12. .AUTODEPEND
  13.  
  14. # Translator Definitions -------------------------------------------
  15.  
  16. BC = C:\BC
  17. BP = C:\BP
  18. CC = bcc +REGEXP.CFG
  19. TLINK = tlink
  20. LIBPATH = $(BC)\LIB
  21. INCLUDEPATH = $(BC)\INCLUDE;$(BP)\UNITS
  22.  
  23. # Implicit Rules ---------------------------------------------------
  24.  
  25. .c.obj:
  26.   $(CC) -c {$< }
  27.  
  28. # List Macros ------------------------------------------------------
  29.  
  30. OBJS =  \
  31.  regexp.obj \
  32.  regexdll.obj
  33.  
  34. # Explicit Rules ---------------------------------------------------
  35.  
  36. ../regexp.dll: regexp.cfg $(OBJS) regexp.res
  37.   $(TLINK) /x/c/P-/Twd/L$(LIBPATH) @&&|
  38. c0dl.obj+
  39. regexp.obj+
  40. regexdll.obj
  41. regexp.dll
  42.         # no map file
  43. mathwl.lib+
  44. import.lib+
  45. cwl.lib
  46. regexp.def
  47. |
  48.   RC  regexp.res regexp.dll
  49.   COPY REGEXP.DLL ..
  50.   DEL REGEXP.DLL
  51.  
  52. regexp.obj: regexp.cfg regexp.c 
  53.  
  54. regexdll.obj: regexp.cfg regexdll.c 
  55.  
  56. regexp.res: regexp.cfg regexp.rc 
  57.     RC -R -I$(INCLUDEPATH) -FO regexp.res REGEXP.RC
  58.  
  59. # Compiler Configuration File --------------------------------------
  60. regexp.cfg: makefile
  61.   copy &&|
  62. -ml!
  63. -WD
  64. -vi-
  65. -weas
  66. -wpre
  67. -w-pro
  68. -I$(INCLUDEPATH)
  69. -L$(LIBPATH)
  70. | regexp.cfg
  71.  
  72.  
  73.